home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.550 < prev    next >
Encoding:
Text File  |  1996-02-12  |  27.8 KB  |  639 lines

  1. Frequently Asked Questions (FAQS);faqs.550
  2.  
  3.  
  4.  
  5.     With R5, there's another twist.  You may specify a customization
  6. resource value.  For example, you might run the "myterm" application like this:
  7.     myterm -xrm "*customization: -color"
  8.  
  9.     If one of your pathname specifications had the value
  10. "/usr/lib/X11/%T/%N%C" then the expanded pathname would be
  11. "/usr/lib/X11/app-defaults/Myterm-color" because the %C substitution character
  12. takes on the value of the customization resource.
  13.  
  14.     The default XFILESEARCHPATH, compiled into Xt, is:
  15.         /usr/lib/X11/%L/%T/%N%C:\  (R5)
  16.         /usr/lib/X11/%l/%T/%N%C:\  (R5)
  17.         /usr/lib/X11/%T/%N%C:\     (R5)
  18.         /usr/lib/X11/%L/%T/%N:\
  19.         /usr/lib/X11/%l/%T/%N:\
  20.         /usr/lib/X11/%T/%N
  21.  
  22.     (Note: some sites replace /usr/lib/X11 with a ProjectRoot in
  23. this batch of default settings.)
  24.  
  25.     The default XUSERFILESEARCHPATH, also compiled into Xt, is
  26.         <root>/%L/%N%C:\  (R5)
  27.         <root>/%l/%N%C:\  (R5)
  28.         <root>/%N%C:\     (R5)
  29.         <root>/%L/%N:\
  30.         <root>/%l/%N:\
  31.         <root>/%N:
  32.  
  33.     <root> is either the value of XAPPLRESDIR or the user's home directory
  34. if XAPPLRESDIR is not set.  If you set XUSERFILESEARCHPATH to some value other
  35. than the default, Xt ignores XAPPLRESDIR altogether.
  36.  
  37.     Notice that the quick and dirty way of making your application find
  38. your app-defaults file in your current working directory is to set XAPPLRESDIR
  39. to ".", a single dot.  In R3, all this machinery worked differently; for R3
  40. compatibilty, many people set their XAPPLRESDIR value to "./", a dot followed
  41. by a slash.
  42.  
  43. [Thanks to Oliver Jones (oj@pictel.com) and Peter Ware, 8/92]
  44.  
  45. ----------------------------------------------------------------------
  46.  
  47. David B. Lewis                     faq%craft@uunet.uu.net
  48.  
  49.         "Just the FAQs, ma'am." -- Joe Friday
  50. --
  51. David B. Lewis        Temporarily at but not speaking for Visual, Inc.
  52. day: dbl@visual.com    evening: david%craft@uunet.uu.net
  53. Xref: bloom-picayune.mit.edu comp.windows.x:61855 news.answers:4487
  54. Newsgroups: comp.windows.x,news.answers
  55. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!eff!sol.ctr.columbia.edu!caen!uunet!visual!dbl
  56. From: dbl@visual.com (David B. Lewis)
  57. Subject: comp.windows.x Frequently Asked Questions (FAQ) 2/4
  58. Message-ID: <1992Dec8.145142.7499@visual.com>
  59. Followup-To: poster
  60. Summary: useful information about the X Window System
  61. Reply-To: faq%craft@uunet.uu.net (X FAQ maintenance address)
  62. Organization: Visual
  63. Date: Tue, 8 Dec 92 14:51:42 GMT
  64. Approved: news-answers-request@MIT.Edu
  65. Expires: Sun, 03 Jan 1993 00:00:00 GMT
  66. Lines: 1134
  67.  
  68. Archive-name: x-faq/part2
  69. Last-modified: 1992/12/07
  70.  
  71.  
  72. ----------------------------------------------------------------------
  73. Subject:  35)  How to I have the R4 xdm put a picture behind the log-in window?
  74.  
  75. The answer lies in changing xdm's xrdb resource in the xdm-config file to run a
  76. program to change the background before loading the resources; for example,
  77. your /usr/lib/X11/xdm/xdm-config file may add the line
  78.     DisplayManager.0.authorize: false
  79. to permit unrestricted access to the display before log-in (beware!) and also
  80.     DisplayManager*xrdb:    /usr/lib/X11/xdm/new.xrdb
  81. where that file does something (for all connections) along the lines of:
  82.     #!/bin/sh
  83.     #comes in with arguments: -display :0 -load /usr/lib/X11/xdm/Xresources
  84.     /usr/bin/X11/xsetroot -display $2 -bitmap /usr/lib/X11/xdm/new.bitmap
  85.     /usr/bin/X11/xrdb $*
  86. Substitute xloadimage or xv for xsetroot, to taste.  Note that this is a
  87. general hack that can be used to invoke a console window or any other client.
  88.  
  89. [Thanks to Jay Bourland (jayb@cauchy.stanford.edu), 9/91]
  90.  
  91. ----------------------------------------------------------------------
  92. Subject:  36)  Why isn't my PATH set when xdm runs my .xsession file?
  93.  
  94.     When xdm runs your .xsession it doesn't source your .cshrc or .login
  95. files. You can set the path explicitly as you normally could for any SH script;
  96. or you can place all environment-setting statements in a separate file and
  97. source it from both the .xsession file and your shell configuration file; or,
  98. if you set your PATH in your .cshrc file, the normal place, you can make your
  99. .xsession have PATH set simply by making it a csh script, i.e. by starting
  100. your .xsession file off with "#!/bin/csh".
  101.     If this doesn't work, also try starting off with:
  102.         #!/bin/sh
  103.         # Reset path:
  104.         PATH=`csh -c 'echo $PATH'` ; export PATH
  105.  
  106. ----------------------------------------------------------------------
  107. Subject:  37)  How do I keep my $DISPLAY when I rlogin to another machine?
  108.  
  109.     There are several ways to avoid having to do a "setenv DISPLAY ..."
  110. whenever you log in to another networked UNIX machine running X.
  111.     One solution is to use the clients/xrsh on the R5 contrib tape.  It
  112. includes xrsh, a script to start an X application on remote machine, and
  113. xrlogin, a script to start a local xterm running rlogin to a remote machine.
  114. A more recent version is on export in xrsh-5.4.shar.
  115.     One solution is to use the xrlogin program from der Mouse
  116. (mouse@larry.mcrcim.mcgill.edu). You can ftp caveat-emptor versions from
  117. 132.206.1.1, in X/xrlogin.c and X/xrlogind.c. The program packages up $TERM and
  118. $DISPLAY into a single string, which is stuffed into $TERM.  rlogin then
  119. propagates $TERM normally; your .cshrc on the remote machine should contain
  120.         eval `xrlogind`
  121. where xrlogind is a program that checks $TERM and if it is of the special
  122. format it recognizes, unpacks it and spits out setenv and unsetenv commands to
  123. recreate the environment variables. [11/90]
  124.  
  125.     In addition, if all you need to do is start a remote X process on
  126. another host, and you find
  127.         rsh <HOST> -n /usr/bin/X11/xterm -display $DISPLAY
  128. too simple (DISPLAY must have your real hostname), then this version of xrsh
  129. can be used to start up remote X processes. The equivalent usage would be
  130.         xrsh <HOST> xterm
  131.  
  132.   #! /bin/sh
  133.   # start an X11 process on another host
  134.   # Date: 8 Dec 88 06:29:34 GMT
  135.   # From: Chris Torek <chris@mimsy.umd.edu>
  136.   # rsh $host -n "setenv DISPLAY $DISPLAY; exec $@ </dev/null >&/dev/null"
  137.   #
  138.   # An improved version:
  139.   # rXcmd (suggested by John Robinson, jr@bbn.com)
  140.   #       (generalized for sh,ksh by Keith Boyer, keith@cis.ohio-state.edu)
  141.   #
  142.   # but they put the rcmd in ()'s which left zombies again.  This
  143.   # script combines the best of both.
  144.  
  145.   case $# in
  146.   [01])  echo "Usage: $0 host x-cmd [args...]";;
  147.   *)
  148.       case $SHELL in
  149.       *csh*)  host="$1"; shift
  150.           xhost "$host" > /dev/null
  151.           rsh "$host" -n \
  152.               "setenv TERM xterm; setenv DISPLAY `hostname`:0; \
  153.               exec $* </dev/null >& /dev/null" &
  154.           ;;
  155.       *sh)
  156.           host="$1"; shift
  157.           xhost "$host" > /dev/null
  158.           rsh "$host" -n \
  159.               "TERM=xterm export TERM; \
  160.               DISPLAY=`hostname`:0 export DISPLAY; \
  161.               LD_LIBRARY_PATH=/usr/X11/lib export LD_LIBRARY_PATH; \
  162.               PATH=\$PATH:/usr/X11/bin:/usr/bin/X11:/usr/local/bin; \            export PATH; \
  163.               exec $* < /dev/null > /dev/null 2>&1" &
  164.           ;;
  165.       esac
  166.       ;;
  167.   esac
  168.  
  169. ----------------------------------------------------------------------
  170. Subject:  38)  How can I design my own font?
  171.  
  172.     One way is to use the "bitmap" client or some other bitmap-editor (e.g.
  173. Sun's icon-editor tool, post-processed with pbmplus) to design the individual
  174. characters and then to do some large amount of post-processing to concatenate
  175. them into the BDF format. See Ollie Jones's article in the November 91 X
  176. Journal for more information.
  177.     The R3 contrib/ area (in fonts/utils/ and in clients/xtroff) contained
  178. a number of useful utilities, including some to convert between BDF font format
  179. and a simple character format which can be edited with any text editor.
  180.     An easier way is to use the "xfed" client to modify an existing font; a
  181. version is on the R4 or R5 X11R5 contrib tape in contrib/clients/xfed. Xfed is
  182. available for anonymous ftp on ftp.Informatik.Uni-Dortmund.DE [129.217.64.63],
  183. possibly as file /pub/windows/X/Diverse-X11-Sourcen/xfed.tar.Z. It can produce
  184. BDF-format fonts which can be compiled for a variety of X servers.
  185.     The xfedor client from Group Bull permits creation of bitmaps, cursors,
  186. XPM1 pixmaps, and fonts. Binaries for common machines are on avahi.inria.fr in
  187. /pub; in addition, the sources (an old Xlib implementation) have been placed
  188. [5/91] in export:/contrib.
  189.     If you are a MetaFont user you can use "mftobdf" from the SeeTeX
  190. distribution to convert PK, GF, and PXL fonts to BDF format; the distribution
  191. is on ftp.cs.colorado.edu and on export.lcs.mit.edu.
  192.     The GNU package fontutils-0.4.tar.Z on prep.ai.mit.edu includes xbfe,
  193. a font editor, and a number of utilities for massaging font formats.
  194.     The O'Reilly X Resource issue #2 contains an article on using these
  195. tools to modify a font.
  196.     Fonts can be resized with Hiroto Kagotani's bdfresize; a new version is
  197. in ftp.cs.titech.ac.jp:/X11/contrib.
  198.  
  199. ----------------------------------------------------------------------
  200. Subject:  39)  Why does adding a font to the server not work (sic)?
  201.  
  202.     After you have built the font using your system's font-compiler,
  203. installed it in some directory, and run `mkfontdir` or your system's equivalent
  204. (e.g. bldfamily for OpenWindows) in that directory, be sure to use `xset +fp
  205. $dir` to add that full path-name to the server's font-path, *or* if the
  206. directory is already in the path, use `xset fp rehash` so that the new fonts in
  207. that directory are actually found; it is this last step that you're probably
  208. leaving out. (You can also use `xset q` to make sure that that directory is in
  209. the path.)
  210.     Sometimes your "xset +fp $dir" command fails with a BadValue error:
  211. X Error of failed request:BadValue(integer parameter out of range for operation)
  212.   Major opcode of failed request:  51 (X_SetFontPath)
  213.  
  214.     This means the X server cannot find or read your font directory, or
  215. that your directory does not look like a font directory to the server.  (The
  216. mention of an "integer parameter" in the message is spurious.)
  217.  
  218. -- Is the font directory you're specifying readable from the SERVER's file
  219.    system?  Remember, it's the server, not the client, which interprets your
  220.    font directory.  Trouble in this area is especially likely when you issue an
  221.    xset command with shell metacharacters in it (e.g. "xset +fp ~/myfonts") and
  222.    the server is an X terminal or managed by xdm.
  223.  
  224. -- Is the directory really a font directory?  If you're running an MIT server
  225.    (or most varieties of vendor servers) look in the directory for the file
  226.    "fonts.dir".  If you can't find that file, run mkfontdir(1).  (If you're
  227.    running OpenWindows, look for the file "Families.list".  If you can't find
  228.    it, run bldfamily(1).)
  229.  
  230. -- If you're in a site where some people run X11Rn servers and others run a
  231.    proprietary server with nonstandard font formats (OpenWindows, for
  232.    example), make sure the font directory is right for the server you're using.
  233.    Hint: if the directory contains .pcf and/or .snf files, it won't work for
  234.    Open Windows.  If the directory contains .ff and/or .fb files, it won't work
  235.    for X11Rn.
  236.  
  237. [thanks to der Mouse (mouse@larry.mcrcim.mcgill.edu) and to Oliver Jones
  238. (oj@pictel.com); 7/92 ]
  239.  
  240. ----------------------------------------------------------------------
  241. Subject:  40)  How do I convert a ".snf" font back to ".bdf" font?
  242.  
  243.     A tool called "snftobdf 1.4" is part of the bdftools package, which is
  244. available from export.lcs.mit.edu:contrib/bdftools.tar.Z and from
  245. crl.nmsu.edu:pub/misc/bdftools.tar.Z. Sources have been posted to fj.sources on
  246. JUNET and should be appearing on comp.sources.x. [2/91]
  247.  
  248. ----------------------------------------------------------------------
  249. Subject:  41)  What is a general method of getting a font in usable format?
  250.  
  251.     der Mouse's getbdf is one solution; it connects to a server and
  252. produces a .BDF file for any font the server is willing to let it.  It can be
  253. used as an anything-to-BDF converter, but requires access to a server that can
  254. understand the font file, thus is both more and less powerful than other tools
  255. such as snftobdf. getbdf is on 132.206.1.1 in X/getbdf.c or available via mail
  256. from mouse@larry.McRCIM.McGill.EDU. [5/91]
  257.     In addition, the R5 program "fstobdf" can produce bdf for any font that
  258. the R5 server has access to.
  259.  
  260. ----------------------------------------------------------------------
  261. Subject:  42)  How do I use DECwindows fonts on my non-DECwindows server?
  262.  
  263.     The DECwindows fonts typically don't exist on a non-DEC installation,
  264. but rewrite rules can be used to alias fonts used by DECwindows applications to
  265. standard MIT fonts of similar characteristics and size. Pick up the file
  266. contrib/DECwindows_on_X11R4_font.aliases from export.lcs.mit.edu; this file is
  267. for a standard MIT R4 server.  It can also serve as a starting point for
  268. creating a similar aliases file for the Open Windows server or other servers
  269. which do not use the MIT font scheme.
  270.  
  271. ----------------------------------------------------------------------
  272. Subject:  43)  How do I add ".bdf" fonts to my DECwindows server?
  273.  
  274.     The format of fonts preferred by DEC's X server is the ".pcf" format.
  275. You can produce this compiled format from the .bdf format by using DEC's dxfc
  276. font-compiler. Note that the DEC servers can also use raw .bdf fonts, with a
  277. performance hit.
  278.  
  279. ----------------------------------------------------------------------
  280. Subject:  44)  How can I set the backgroundPixmap resource in a defaults file?
  281. I want to be able to do something like this:
  282.     xclock*backgroundPixmap:      /usr/include/X11/bitmaps/rootweave
  283.  
  284.     You can't do this. The backgroundPixmap resource is a pixmap of the
  285. same depth as the screen, not a bitmap (which is a pixmap of depth 1). Because
  286. of this, writing a generic String to Pixmap converter is impossible, since
  287. there is no accepted convention for a file format for pixmaps. Therefore,
  288. neither the X Toolkit or the Athena widget set define a String to Pixmap
  289. converter, because there is no converter you cannot specify this value as a
  290. resource.  The Athena widget set does define a String to Bitmap converter for
  291. use in many of its widgets, however.
  292. [courtesy Chris D. Peterson (now kit@ics.com), 4/90]
  293.  
  294. However:
  295.     A specific converter which encapsulates much of the functionality of
  296. the xloadimage package by Jim Frost was posted 12/90 by Sebastian Wangnick
  297. (basti@unido.informatik.uni-dortmund.de); it permits loading of a number of
  298. image formats as a pixmap.
  299.  
  300.     The leading general-purpose format for pixmaps is the XPM format used
  301. by Groupe Bull in several of its programs, including the GWM window manager, by
  302. AT&T in its olpixmap editor, and by ICS in its interface builder. XPM
  303. distribution, available on export as contrib/xpm.tar.Z, includes read/write
  304. routines which can easily be adapted to converters by new widgets which want to
  305. allow specification of pixmap resources in the above manner.  See information
  306. on the xpm-talk mailing list above. XPM 3.0c was announced in 10/91 and is
  307. available from export.lcs.mit.edu and avahi.inria.fr; it should be on the R5
  308. contrib tape. XPM 3.2a is now available. [8/92]
  309.  
  310. ----------------------------------------------------------------------
  311. Subject:  45)  Why can't I override translations? Only the first item works.
  312.  
  313.     You probably have an extra space after the specification of the first
  314. item, like this:
  315.     basic*text.translations:  #override \
  316.     Ctrl<Key>a:    beginning-of-line() \n\     
  317.     Ctrl<Key>e:    end-of-line()
  318.                           ^ extra space
  319. The newline after that space is ending the translation definition.
  320. [Thanks to Timothy J. Horton, 5/91]
  321.  
  322. ----------------------------------------------------------------------
  323. Subject:  46)  How can I have xclock or oclock show different timezones?
  324.  
  325.     One solution is xchron, in Volume 6 of comp.sources.x, which can show
  326. the time for timezones other than the local one.
  327.     Alternatively, you can probably set the timezone in the shell from
  328. which you invoke the xclock or oclock, or use a script similar to this:
  329.     #!/bin/sh
  330.     TZ=PST8PDT xclock -name "San_Luis_Obispo_CA" 2> /dev/null &
  331.     TZ=EST5EDT xclock -name "King_Of_Prussia_PA" 2> /dev/null &
  332.  
  333. ----------------------------------------------------------------------
  334. Subject:  47)  I have xmh, but it doesn't work. Where can I get MH?
  335.  
  336.     The xmh mail-reader requires the Rand MH mail/message handling system,
  337. which is not part of the UNIX software distribution for many machines. A list
  338. of various ftp, uucp, e-mail and US-mail sites for both xmh and MH is given in
  339. the monthly MH FAQ; one source is ics.uci.edu in the file pub/mh/mh-6.7.tar.Z.
  340. If you do not receive the comp.mail.mh newsgroup or the MH-users mailing list,
  341. you can request a copy of the FAQ, which also includes a section on xmh,
  342. by sending mail to mail-server@pit-manager.mit.edu containing the request
  343. "send usenet/news.answers/mh-faq".
  344.  
  345. ----------------------------------------------------------------------
  346. Subject:  48)  Why am I suddenly unable to connect to my Sun X server?
  347. After a seemingly random amount of time after the X server has been started, no
  348. other clients are able to connect to it.
  349.  
  350.     The default cron cleanup jobs supplied by Sun (for 4.0.3, at least)
  351. delete "old" (unreferenced) files from /tmp -- including /tmp/.X11-unix, which
  352. contains the socket descriptor used by X. The solution is to add "! -type s" to
  353. the find exclusion in the cron job.
  354. [10/90]
  355.  
  356. ----------------------------------------------------------------------
  357. Subject:  49)  Why don't the R5 PEX demos work on my mono screen?
  358.  
  359. The R5 sample server implementation works only on color screens, sorry.
  360.  
  361. ----------------------------------------------------------------------
  362. Subject:  50)  How do I get my Sun Type-[45] keyboard fully supported by Xsun?
  363.  
  364. Many users wants the Num Lock key to light the Num Lock LED and have the
  365. appropriate effect on the numeric keypad. The Xsun server as distributed by MIT
  366. doesn't do this but there are two different patches available.
  367.  
  368. The first patch is written by Jonathan Lemon and fixes the Num Lock related
  369. problems. It is available from export.lcs.mit.edu in the file
  370. contrib/Xsun-R5.numlock_patch.Z .
  371.  
  372. The second is written by Martin Forssen and fixes the Num Lock and Compose keys
  373. and adds support for the different national keyboard layouts for Type-4 and
  374. Type-5 keyboards. This patch is available from export.lcs.mit.edu in
  375. contrib/sunkbd.tar.Z or via email from maf@dtek.chalmers.se.
  376.  
  377. [thanks to Martin Forssen (maf@dtek.chalmers.se or maf@math.chalmers.se), 8/92]
  378.  
  379. A set of patches by William Bailey (dbgwab@arco.com) was posted to newsgroups
  380. 11/92 to provide support for the Type-5 keyboard.
  381.  
  382. ----------------------------------------------------------------------
  383. Subject:  51)  How do I report bugs in X?
  384.  
  385.     Generally, report bugs you find to the organization that supplied you
  386. with the X Window System. If you received the R5 source distribution directly
  387. from MIT, please read the file mit/bug-report for instructions. [Look in
  388. mit/doc/bugs/bug-report in R4.]
  389.  
  390. [Thanks to Stephen Gildea <gildea@expo.lcs.mit.edu>, 5/91; 12/91]
  391.  
  392. ----------------------------------------------------------------------
  393. Subject:  52)  Why do I get "Warning: Widget class version mismatch"?
  394.  
  395.     This error, which typically goes on to say, "widget 11004 vs.
  396. intrinsics 11003" indicates that the header files you included when building
  397. your program didn't match the header files that the Xt library you're linking
  398. against was built with; check your -I include path and -L link-path to be sure.
  399.     However, the problem also occurs when linking against a version of the
  400. X11R4 Xt library before patch 10; the version number was wrong. Some Sun OW
  401. systems, in particular, were shipped with the flawed version of the library,
  402. and applications which link against the library typically give the warnings you
  403. have seen.
  404.  
  405. ----------------------------------------------------------------------
  406. Subject:  53)  Where can I find a dictionary server for xwebster?
  407.  
  408.     Webster's still owns the copyright to the on-line copies of Webster's
  409. Dictionary which are found at various (university) sites. After it became aware
  410. that these sites were then acting as servers for other sites running xwebster
  411. and gnuemacs-webster, it asked that server sites close off external access.
  412.     [The NeXT machine apparently is also licensed to have the dictionary. A
  413. Webster daemon for NeXT machines is available from iuvax.cs.indiana.edu
  414. (129.79.254.192) in "pub/webster/NeXT-2.0".]
  415.     Unless you want to get a legal on-line copy yourself or can find a site
  416. which can grant you access, you are probably out of luck.
  417.  
  418.     However, if you are a legitimate site, you'll want to pick up the
  419. latest xwebster, as-is on export:contrib/xwebster.tar.Z [10/91]; the file
  420. xwebster.README includes discussions of the availability, illegality, and
  421. non-availability of dictionary servers.
  422.     
  423. [courtesy steve@UMIACS.UMD.EDU (Steve Miller) and mayer@hplabs.hp.com (Niels
  424. Mayer) 11/90]
  425.  
  426. ----------------------------------------------------------------------
  427. Subject:  54)  TOPIC: OBTAINING X AND RELATED SOFTWARE AND HARDWARE
  428. ----------------------------------------------------------------------
  429. Subject:  55)  Is X public-domain software?
  430.  
  431.     No. The X software is copyrighted by various institutions and is not
  432. "public domain", which has a specific legal meaning. However, the X
  433. distribution is available for free and can be redistributed without fee.
  434.     Contributed software, though, may be placed in the public domain by
  435. individual authors.
  436.  
  437. ----------------------------------------------------------------------
  438. Subject:  56)  How compatible are X11R3, R4, and R5? What changes are there?
  439.  
  440. The Release Notes for each MIT release of X11 specify the changes from the
  441. previous release.  The X Consortium tries very hard to maintain compatibility
  442. across releases.  In the few places where incompatible changes were necessary,
  443. details are given in the Release Notes.  Each X11 distribution site on the
  444. network also offers the Release Notes that go with the release they offer; the
  445. file typically can be found at the top of the distribution tree.
  446.  
  447. [Stephen Gildea, 1/92]
  448.  
  449. The comp.windows.x.intrinsics FAQ-Xt lists Xt differences among these versions.
  450.  
  451. ----------------------------------------------------------------------
  452. Subject:  57)  Where can I get X11R5 (source and/or binaries)?
  453.  
  454. Information about MIT's distribution of the sources on 6250bpi and QIC-24 tape
  455. and its distribution of hardcopy of the documents is available from
  456. Software Center, Technology Licensing Office, Massachusetts Institute of
  457. Technology, 28 Carleton Street, Room E32-300, Cambridge MA 02142-1324,
  458. phone: 617-258-8330.
  459.  
  460. You will need about 100Mb of disk space to hold all of Core and 140MB to hold
  461. the Contrib software donated by individuals and companies.
  462.  
  463. PLEASE use a site that is close to you in the network.
  464.  
  465. Note that the RELEASE notes are generally available separately in the same
  466. directory; the notes list changes from previous versions of X and offer a
  467. guide to the distribution.
  468.  
  469.               North America anonymous FTP:
  470.  
  471. California    gatekeeper.dec.com        pub/X11/R5
  472.         16.1.0.2
  473. California    soda.berkeley.edu        pub/X11R5
  474.         128.32.131.179
  475. Indiana        mordred.cs.purdue.edu        pub/X11/R5
  476.         128.10.2.2
  477. Maryland    ftp.brl.mil            pub/X11R5
  478.         128.63.16.158
  479.         (good for MILNET sites)
  480. Massachusetts    crl.dec.com            pub/X11/R5
  481.         192.58.206.2
  482. Massachusetts    export.lcs.mit.edu        pub/R5
  483.         18.24.0.12
  484.         (crl.dec.com is better)
  485. Michigan    merit.edu            pub/X11R5
  486.         35.1.1.42
  487. Missouri    wuarchive.wustl.edu        packages/X11R5
  488.         128.252.135.4
  489. Montana        ftp.cs.montana.edu        pub/X.V11R5
  490.         192.31.215.202
  491. New Mexico    pprg.eece.unm.edu        pub/dist/X11R5
  492.         129.24.24.10
  493. New York    azure.acsu.buffalo.edu        pub/X11R5
  494.         128.205.7.6
  495. North Carolina    cs.duke.edu            dist/sources/X11R5
  496.         128.109.140.1
  497. Ohio        ftp.cis.ohio-state.edu        pub/X.V11R5
  498.         128.146.8.52
  499. Ontario        ftp.cs.utoronto.ca        pub/X11R5
  500.         128.100.1.105
  501. Washington DC    x11r5-a.uu.net            X/R5
  502.         192.48.96.12
  503. Washington DC    x11r5-b.uu.net            X/R5
  504.         137.39.1.12
  505.  
  506.            Europe/Middle East/Australia anonymous FTP:
  507.  
  508. Australia    munnari.oz.au            X.V11/R5
  509.         128.250.1.21
  510. Denmark        freja.diku.dk            pub/X11R5
  511.         129.142.96.1
  512. United Kingdom    src.doc.ic.ac.uk        graphics/X.V11R5
  513.         146.169.3.7
  514.         hpb.mcc.ac.uk            pub/X11r5
  515.         130.88.200.7
  516. Finland        nic.funet.fi            pub/X11/R5
  517.         128.214.6.100
  518. France        nuri.inria.fr            X/X11R5
  519.         128.93.1.26
  520. Germany        ftp.germany.eu.net        pub/X11/X11R5
  521.         192.76.144.129
  522. Israel        cs.huji.ac.il            pub/X11R5
  523.         132.65.6.5
  524. Italy        ghost.sm.dsi.unimi.it        pub/X11R5
  525.         149.132.2.1
  526. Netherlands    archive.eu.net            windows/X/R5
  527.         192.16.202.1
  528. Norway        ugle.unit.no            pub/X11R5
  529.         129.241.1.97
  530. Norway        nac.no                pub/X11R5
  531.         129.240.2.40
  532. Switzerland    nic.switch.ch            software/X11R5
  533.         130.59.1.40
  534.  
  535.              Japan anonymous FTP:
  536.  
  537. Kanagawa    sh.wide.ad.jp            X11R5
  538.         133.4.11.11
  539. Kwansai        ftp.ics.osaka-u.ac.jp        X11R5
  540.         133.1.12.30
  541. Kyushu        wnoc-fuk.wide.ad.jp        X11R5
  542.         133.4.14.3
  543. TISN        utsun.s.u-tokyo.ac.jp        X11R5
  544.         133.11.11.11
  545. Tokyo        kerr.iwanami.co.jp        X11R5
  546.         133.235.128.1
  547. Tokyo        scslwide.sony.co.jp        pub/X11R5
  548.         133.138.199.1
  549.  
  550.                 UUCP:
  551.  
  552. uunet        for UUNET customers        ~/X/R5
  553. decwrl        existing neighbors only        ~/pub/X11/R5
  554. osu-cis                        ~/X.V11R5
  555.         (not online until ~ 9 Sept)
  556. WJanon        (host: watjo.swp.wj.com)    ~/X/X11R5/
  557.         Modem: Telebit TB2500 (PEP, V.32, etc)
  558.         Systems or L.sys suggested/approximate entry:
  559.             WJanon Any ACU 19200 1-408-435-0240 "" \r login: WJanon
  560. utai        existing neighbors only        ~/ftp/pub/X11R5
  561. hp4nl        Netherlands only        ~uucp/pub/windows/X/R5
  562.         
  563.  
  564.  
  565.                  NFS:
  566. Missouri    wuarchive.wustl.edu        /archive/packages/X11R5
  567.         128.252.135.4            mount point: /archive
  568.                             
  569.                  AFS:
  570. Pennsylvania    /afs/grand.central.org/pub/X11R5
  571.  
  572.              NIFTP (hhcp, cpf, fcp, ...):
  573. United Kingdom    uk.ac.ic.doc.src        <X.V11R5>
  574.         00000510200001
  575.         user "guest"
  576.  
  577.                   anon FTAM:
  578. United Kingdom    000005102000 (Janet)        X.V11R5
  579.         146.169.3.7 (Internet)
  580.         204334504108 (IXI)
  581.  
  582.                    ACSNet:
  583. Australia    munnari.oz (fetchfile)        X.V11/R5
  584.         Please fetch only one file
  585.         at a time, after checking
  586.         that a copy is not available
  587.         at a closer site.
  588.  
  589. [9/2/91; updated for contrib 10/91]
  590.  
  591. Anyone in Europe can get a copy of the MIT X.V11R5 distribution, including
  592. the core and contributed software and all official patches, free of charge.
  593. The only requirement is to agree to return the tapes, or equivalent new tapes.
  594. Only QIC and TK format cartridges can be provided.  Contact: Jamie Watson,
  595. Adasoft AG, Nesslerenweg 104, 3084 Wabern, Switzerland.
  596. Tel: +41 31 961.35.70 or +41 62 61.41.21; Fax: +41 62 61.41.30; jw@adasoft.ch.
  597.  
  598. UK sites can obtain X11 through the UKUUG Software Distribution Service, from
  599. the Department of Computing, Imperial College, London, in several tape formats.
  600. You may also obtain the source via Janet (and therefore PSS) using Niftp (Host:
  601. uk.ac.ic.doc.src Name: guest Password: your_email_address).  Queries should be
  602. directed to Lee McLoughlin, 071-589-5111#5037, or to info-server@doc.ic.ac.uk
  603. or ukuug-soft@uk.ac.ic.doc (send a Subject line of "wanted". Also offered are
  604. copies of comp.sources.x, the export.lcs.mit.edu contrib and doc areas and most
  605. other announced freely distributable packages.
  606.  
  607. X11R5 and X11R4 source along with X11R5 contrib code, prebuilt X binaries for
  608. major platforms, and source code examples from O'Reilly's books is available on
  609. an ISO-9660-format CD-ROM from O'Reilly & Associates. [as of 3/92].
  610.  
  611. X11R5 source is available on ISO-9660-format CD-ROM for members of the Japan
  612. Unix Society from Hiroaki Obata, obata@jrd.dec.com.
  613.  
  614. X11R5 source along with GNU source, the comp.sources.x archives, and SPARC
  615. binaries is available on an ISO-9660-format CD-ROM from PDQ Software,
  616. 510-947-5996 (or Robert A. Bruce, rab@sprite.Berkeley.EDU).
  617.  
  618. X11R5 source is available from Automata Design Associates, +1 215-646-4894.
  619.  
  620. Various users' groups (e.g. SUG) offer X sources cheaply, typically on CD-ROM.
  621.  
  622. Source for the Andrew User Interface System 5.1 and binaries for common systems
  623. are available on CD-ROM. Information: info-andrew-requests@andrew.cmu.edu,
  624. 412-268-6710, fax 412-621-8081.
  625.  
  626. Binaries for X11R5, with shared libX11 and libXmu, for A/UX 2.0.1 are now
  627. available from wuarchive.wustl.edu:/archive/systems/aux/X11R5.  Patches for
  628. X11R5 compiled with gcc (but not shared libraries) are also available.
  629. [John L. Coolidge (coolidge@cs.uiuc.edu, 10/91)]
  630.  
  631. Binaries by Rich Kaul (kaul@ee.eng.ohio-state.edu) for the Sun386i running
  632. SunOS 4.0.2 are available on dsinc.dsi.com (please only after-hours USA EST).
  633.  
  634. Binaries for the Sun386i are available from compaq.com (131.168.249.254) in
  635. pub/sun-386i/sources and from vernam.cs.uwm.edu (129.89.9.117).
  636.  
  637. A binary tree for the Next by Douglas Scott (doug@foxtrot.ccmrc.ucsb.edu) is on
  638. foxtrot.ccmrc.ucsb.edu; it is missing the server, though.
  639.